/* ==========================================================================
   2nd Chances — Common Stylesheet (Orange Theme)
   Add page-specific tweaks using a body class (e.g., .home, .about, .contact).
   ========================================================================== */

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);   /* this pulls in the gray now */
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1rem; }

/* Design tokens (Orange palette) */
:root {
  --bg: #ffffff;       /* light gray background for the whole site */
  --text: #101010;
  --muted: #6a6a6a;

  --brand: #e06b00;    /* orange */
  --brand-2: #fff1e6;  /* pale orange tint */
  --accent: #8a3d00;   /* deep burnt orange */

  --card: #ffffff;     /* keep cards/sections white so they stand out */
  --border: #d0d0d0;   /* border against gray background */
  --shadow: 0 6px 24px rgba(0,0,0,.07);

  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;

  --container: 1120px;
}




/* Layout helpers */
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 780px){
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* Accessibility */
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{ position:static; width:auto; height:auto; padding:.5rem .75rem; background:#000; color:#fff; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.75rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  letter-spacing:.2px;
}

.brand-name{
  font-weight: 800;
  letter-spacing:.2px;
}

.brand-tagline{
  margin:.125rem 0 0;
  font-size:.85rem;
  color:var(--muted);
}

/* Desktop / default nav */
.site-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:.5rem;
  flex-wrap:wrap;
}

.site-nav a{
  padding:.5rem .75rem;
  border-radius: 999px;
}

.site-nav a:hover{
  background: var(--brand-2);
}

.site-nav a.active{
  background: var(--brand);
  color:#fff;
}

/* =========================
   Tablet layout
   ========================= */
@media (max-width: 900px) {
  .header-inner{
    flex-direction: column;
    align-items:flex-start;   /* logo and nav left-aligned */
    gap:.5rem;
  }

  .site-nav{
    width:100%;
  }

  .site-nav ul{
    justify-content:flex-start;
    row-gap:.35rem;
  }
}

/* =========================
   Phone layout
   ========================= */
@media (max-width: 600px) {
  .site-nav ul{
    flex-direction: column;
    align-items:stretch;
    gap:.25rem;
  }

  .site-nav a{
    width:100%;
    text-align:left;
    padding:.45rem .75rem;
  }
}


/* Hero */
.hero{
  background:
    radial-gradient(1200px 400px at 20% -10%, #ffe7d3 0%, rgba(255,231,211,0) 60%),
    linear-gradient(180deg, #fff 0%, var(--brand-2) 100%);
}
.hero-inner{ display:grid; gap:1.25rem; padding: clamp(1.25rem, 2vw + 1rem, 2.5rem) 0; }
@media (min-width: 960px){ .hero-inner{ grid-template-columns: 1.1fr .9fr; align-items: center; } }
.hero-copy h1{ font-size: clamp(1.75rem, 2.2vw + 1.5rem, 2.75rem); line-height:1.15; margin:0 0 .5rem; }
.hero-copy p{ font-size: clamp(1rem, .4vw + 1rem, 1.15rem); color:#333; margin: 0 0 1rem; }
.accent{ color: var(--brand); }
.cta-row{ display:flex; flex-wrap:wrap; gap:.5rem; margin: .75rem 0 1rem; }

.btn{ display:inline-block; font-weight:700; padding:.7rem 1rem; border-radius: 999px; border:1px solid transparent; transition: transform .04s ease, filter .15s ease; }
.btn:active{ transform: translateY(1px); }
.btn.primary{ background: var(--brand); color:#fff; }
.btn.primary:hover{ filter: brightness(.96); }
.btn.outline{ border-color: var(--brand); color: var(--brand); background:#fff; }
.btn.outline:hover{ background: var(--brand-2); }
.btn.link{ padding:0; border:0; color: var(--brand); font-weight:800; }

.hero-highlights{ list-style: none; margin: 0; padding: 0; display:grid; gap:.25rem; color:#222; }
.hero-media .media-placeholder{
  background:#fff; border:1px dashed #d8c8ba; border-radius: var(--radius-lg);
  min-height: 240px; display:grid; place-items:center; text-align:center; padding:1rem; box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}


/* Pillars */
.pillars{ padding: clamp(1.5rem, 2vw + 1rem, 3rem) 0; }
.card{
  background: var(--card); border:1px solid var(--border); border-radius: var(--radius);
  overflow:hidden; box-shadow: var(--shadow); display:grid; grid-template-rows: auto 1fr;
}
.card-body{ padding: 1rem 1.1rem 1.2rem; }
.card h2{ margin:.25rem 0 .5rem; font-size:1.35rem; }
.card p{ margin:0 0 .75rem; color:#333; }
.card .media-placeholder.small{ min-height: 160px; border-radius: 0; background:#fff; border:1px dashed #e2d6cb; }

.card.new{ border-top:4px solid var(--brand); }
.card.used{ border-top:4px solid var(--accent); }

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  display: block;
}


/* Mattress Callout */
.mattress-callout{ background: #fff; border-block: 1px solid var(--border); }
.callout-inner{ text-align:center; padding: clamp(1.5rem, 2vw + 1rem, 3rem) 0; }
.callout-inner h2{ margin:.25rem 0 .5rem; }
.callout-inner p{ color:#333; margin:0 0 .75rem; }

/* Quick Facts */
.quick-facts{ padding: clamp(1.5rem, 2vw + 1rem, 3rem) 0; }
.fact{ background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding:1rem; box-shadow: var(--shadow); }
.fact h3{ margin:.25rem 0 .35rem; }
.fact p{ margin:0 0 .5rem; color:#333; }
.fact .btn.link{ color: var(--accent); }

/* Social Proof */
.social-proof{ background:#fff; border-top:1px solid var(--border); }
.social-proof .container{ padding: clamp(1.5rem, 2vw + 1rem, 3rem) 0; }
.reviews{ display:grid; gap:.75rem; }
.reviews blockquote{
  margin:0; padding:1rem 1.1rem; background:#fff7f0;
  border-radius: var(--radius-sm); border-left:4px solid var(--brand); color:#2a2a2a;
}
.reviews cite{ display:block; margin-top:.35rem; color:#5a524b; font-style: normal; font-size:.95rem; }

/* Footer */
.site-footer{ background:#101010; color:#efefef; }
.footer-grid{ display:grid; gap:1rem; padding: 1.25rem 0; }
.footer-grid a{ color:#efefef; }
.footer-grid a:hover{ color:#ffffff; text-decoration: underline; text-underline-offset: 2px; }
.footer-note{ opacity:.9; font-size:.95rem; }

@media (min-width: 760px){
  .footer-grid{ grid-template-columns: 1.2fr .8fr 1fr; align-items:start; }
}
/* =========================================================
   Page Add-ons — New Furniture & Mattresses (new-products)
   Layer on top of common.css (orange theme)
   ========================================================= */

/* Utilities */
.muted { color: var(--muted); }
.visually-hidden {
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* HERO tweaks (subtle spacing + stronger headline contrast) */
.new-products .hero-inner { padding: clamp(1.25rem, 2.5vw + 1rem, 3rem) 0; }
.new-products .hero-copy h1 { letter-spacing: 0.2px; }
.new-products .hero-copy p { max-width: 62ch; }

/* Distributor section */
.new-products #distributors h2 { margin-bottom: .25rem; }
.new-products #distributors .grid-2 { align-items: stretch; }
.new-products .card {
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.new-products .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border-color: #e9dfd6;
}
.new-products .card .media-placeholder.small {
  min-height: 180px;
  display: grid; place-items: center; text-align: center;
  background: #ffffff;
}

.new-products .card .media-placeholders.smalls {
  min-height: 180px;
  display: grid; place-items: center; text-align: center;
  background: #0e2f90;
}

.new-products .card h3 { font-size: 1.2rem; }

/* Optional distributor badges */
.new-products .badge {
  display:inline-block; font-size:.8rem; font-weight:700;
  padding:.25rem .5rem; border-radius:999px; border:1px solid var(--border);
  background:#fff7f0; color: var(--accent);
}
.new-products .card h3 + .badge { margin-left:.5rem; }

/* Catalog links style emphasis */
.new-products .card .btn.link { font-weight:800; }
.new-products .card .btn.link::after {
  content: " ↗";
}

/* How-to-order block */
.new-products #how-to-order .grid-3 { align-items: start; }
.new-products #how-to-order .fact { border-color: #ecdccd; }
.new-products #how-to-order .fact h3 { color: var(--accent); }

/* Email CTA row refinement */
.new-products a.btn.primary[href^="mailto:"] {
  letter-spacing:.2px;
}
@media (max-width: 560px){
  .new-products a.btn.primary[href^="mailto:"] {
    display:block; width:100%; text-align:center; margin-bottom:.5rem;
  }
  .new-products .btn.outline { display:block; width:100%; text-align:center; }
}

/* Delivery note section */
.new-products .social-proof h2 { margin-bottom:.5rem; }
.new-products .social-proof blockquote { background:#fff9f3; }

/* Focus states (keyboard accessibility) */
.new-products a:focus-visible,
.new-products button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Anchored headings spacing for in-page links (#distributors, #how-to-order) */
.new-products [id] { scroll-margin-top: 80px; }

/* Light separators between major sections on large screens */
@media (min-width: 960px){
  .new-products .pillars { border-bottom: 1px solid var(--border); }
  .new-products .quick-facts { border-bottom: 1px solid var(--border); }
}

/* Optional: subtle icon bullets for lists inside cards */
.new-products .card p::marker { content: ""; } /* reset */
.new-products .card ul { list-style: none; padding-left: 0; }
.new-products .card ul li {
  position: relative; padding-left: 1.1rem;
}
.new-products .card ul li::before{
  content: ""; width:.5rem; height:.5rem; border-radius:50%;
  background: var(--brand); position:absolute; left:0; top:.55em;
}

/* Page-specific fine-tuning hooks (extend as needed) */
.new-products .catalog-note { color: var(--muted); font-size:.95rem; }
.new-products .distributor-logo { max-height: 44px; width:auto; object-fit: contain; }

/* =========================================================
   Page Add-ons — Used Store (used-store.html)
   Layer on top of common.css (orange theme)
   ========================================================= */

.muted { color: var(--muted); }

/* BAND header: different from hero (split layout + chips) */
.used-store .band {
  background: linear-gradient(180deg, #fff 0%, var(--brand-2) 70%);
  border-bottom: 1px solid var(--border);
}
.used-store .band-inner {
  display: grid; gap: 1rem; align-items: center;
  padding: clamp(1.25rem, 2.2vw + 1rem, 2.5rem) 0;
}
@media (min-width: 960px){
  .used-store .band-inner { grid-template-columns: 1.2fr .8fr; }
}
.used-store .band h1 {
  margin: 0 0 .4rem; line-height: 1.15;
  font-size: clamp(1.7rem, 2.1vw + 1.5rem, 2.5rem);
}
.used-store .band p { margin: 0 0 .75rem; color:#333; }
.used-store .band-cta { display:flex; flex-wrap:wrap; gap:.5rem; }
.used-store .band-stats { display:flex; gap:.5rem; flex-wrap:wrap; }
.used-store .chip{
  background:#fff; border:1px solid var(--border); border-radius:999px;
  padding:.4rem .7rem; box-shadow: var(--shadow); font-weight:700;
}

/* Notice strip */
.used-store .notice { background:#fff7f0; border-block:1px solid var(--border); }
.used-store .notice-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:.75rem; padding:.65rem 0;
}
.used-store .notice .btn.link{ color: var(--accent); font-weight:800; }
@media (max-width: 680px){
  .used-store .notice-inner{ flex-direction:column; align-items:flex-start; }
}

/* Mosaic gallery (distinct layout) */
.used-store .mosaic { background:#fff; }
.used-store .mosaic .container { padding: clamp(1.2rem, 2vw + 1rem, 2.4rem) 0; }
.used-store .mosaic h2 { margin: .1rem 0 .25rem; }
.used-store .mosaic .muted { margin-bottom: .75rem; }
.used-store .mosaic-grid{
  display:grid; gap:.6rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
}
.used-store .tile img {
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .5s ease;
  transform: scale(1.15); /* 👈 increased size */
}

.used-store .tile:hover img{ transform: scale(1.03); }
.used-store .tile.wide{ grid-column: span 2; }
.used-store .tile.tall{ grid-row: span 2; }
@media (min-width: 920px){
  .used-store .mosaic-grid{
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap:.75rem;
  }
}

/* Visit & Contact band (cards grid) */
.used-store .visit{
  background: linear-gradient(180deg, var(--brand-2) 0%, #fff 100%);
  border-top:1px solid var(--border);
}
.used-store .visit-grid{
  display:grid; gap:1rem; padding: clamp(1.2rem, 2vw + 1rem, 2.4rem) 0;
}
@media (min-width: 860px){ .used-store .visit-grid{ grid-template-columns: 1fr 1fr; } }

.used-store .visit-card{
  background:#fff; border:1px solid var(--border); border-radius:16px;
  padding:1rem; box-shadow: var(--shadow);
}
.used-store .visit-card h3{ margin:.25rem 0 .4rem; }
.used-store .contact-lines{ display:flex; gap:.5rem; flex-wrap:wrap; }

.used-store .hours{ margin-top:.5rem; }
.used-store .hours .row{
  display:flex; justify-content:space-between; gap:.5rem;
  padding:.35rem .5rem; border-bottom:1px dashed #ecdccd;
}
.used-store .hours .row:last-child{ border-bottom:0; }

/* Quote strip (simple, bold) */
.used-store .quote-strip{
  background:#101010; color:#f5f5f5; border-top:1px solid #000;
}
.used-store .quote-strip .container{ padding: 1rem 0; }
.used-store .quote-strip blockquote{
  margin:0; font-size: clamp(1rem, .6vw + 1rem, 1.2rem);
  text-align:center; font-weight: 700;
}

/* Accessibility + spacing niceties */
.used-store a:focus-visible,
.used-store button:focus-visible{
  outline:2px solid var(--brand); outline-offset:2px; border-radius:8px;
}
.used-store [id]{ scroll-margin-top: 80px; }

/* =========================================================
   Page Add-ons — Other Services (other-services.html)
   Layer on top of common.css (orange theme)
   ========================================================= */

.services .svc-band{
  background:
    radial-gradient(900px 300px at 20% -10%, #ffe9dc 0%, rgba(255,233,220,0) 60%),
    linear-gradient(180deg, #fff 0%, var(--brand-2) 100%);
  border-bottom:1px solid var(--border);
}
.services .svc-band-inner{
  padding: clamp(1.25rem, 2.2vw + 1rem, 2.5rem) 0;
}
.services .svc-band h1{
  margin:.1rem 0 .4rem;
  font-size: clamp(1.8rem, 2.2vw + 1.4rem, 2.6rem);
  line-height: 1.15;
}
.services .svc-band .lead{
  color:#333; max-width: 62ch; margin: 0;
}

/* Cards grid */
.services .svc-grid .cards{
  display:grid; gap:1rem;
  padding: clamp(1.2rem, 2vw + 1rem, 2.4rem) 0;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){
  .services .svc-grid .cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px){
  .services .svc-grid .cards{ grid-template-columns: repeat(4, 1fr); }
}

.services .svc-card{
  background:#fff; border:1px solid var(--border); border-radius:16px;
  box-shadow: var(--shadow); overflow:hidden; display:flex; flex-direction:column;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.services .svc-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border-color: #e9dfd6;
}

.services .svc-card-media{
  background: #fff7f0; border-bottom:1px solid var(--border);
  display:grid; place-items:center; padding:1.1rem;
}
.services .svc-logo{
  width:56px; height:56px; border-radius:14px; display:grid; place-items:center;
  font-weight:800; letter-spacing:.3px; color:#fff; background: var(--brand);
  box-shadow: inset 0 -6px 12px rgba(0,0,0,.08);
}

.services .svc-card-body{ padding:1rem 1rem 1.2rem; }
.services .svc-card-body h2{ margin:.25rem 0 .4rem; font-size:1.2rem; }
.services .svc-card-body p{ margin:0 0 .7rem; color:#333; }
.services .svc-card .btn.link{ font-weight:800; }
.services .svc-card .btn.link::after{ content:" ↗"; }

/* Contact band */
.services .svc-contact{
  background: linear-gradient(180deg, var(--brand-2) 0%, #fff 100%);
  border-top:1px solid var(--border);
}
.services .svc-contact-inner{
  text-align:center; padding: clamp(1.2rem, 2vw + 1rem, 2.4rem) 0;
}
.services .svc-actions{ display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; }

/* Accessibility niceties */
.services a:focus-visible,
.services button:focus-visible{
  outline:2px solid var(--brand); outline-offset:2px; border-radius:8px;
}
.services [id]{ scroll-margin-top: 80px; }

/* =========================================================
   Page Add-ons — About Us (about.html)
   ========================================================= */

.about .story{
  background:#fff; border-bottom:1px solid var(--border);
  padding: clamp(1.5rem, 2vw + 1rem, 3rem) 0;
}
.about .story h1{ margin:0 0 .5rem; font-size: clamp(1.8rem, 2vw + 1.5rem, 2.7rem); }
.about .story .lead{ font-weight:600; margin-bottom:1rem; color:#333; }

/* Family Gallery */
.about .family-gallery {
  background: var(--brand-2);
  padding: clamp(1.5rem, 2vw + 1rem, 3rem) 0;
}

.about .family-gallery h2 {
  margin: 0 0 .3rem;
}

/* Single image wrapper */
.about .family-gallery .gallery-single {
  margin-top: 1rem;
  max-width: 800px;   /* adjust size if needed */
  margin-left: auto;
  margin-right: auto;
}

.about .family-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Image effects */
.about .family-gallery img {
  width: 100%;
  height: auto;          /* IMPORTANT for single image */
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.about .family-gallery figure:hover img {
  transform: scale(1.03);
}


/* Journey / Timeline */
.about .journey{ background:#fff; padding: clamp(1.5rem, 2vw + 1rem, 3rem) 0; border-top:1px solid var(--border); }
.about .journey h2{ margin:0 0 1rem; }
.about .timeline{ list-style:none; padding:0; margin:0; display:grid; gap:1rem; }
.about .timeline li{
  background:#fff7f0; border:1px solid var(--border); border-radius:12px;
  padding:1rem; box-shadow: var(--shadow);
}
.about .timeline .year{ display:block; font-weight:700; color:var(--accent); margin-bottom:.25rem; }

/* Closing */
.about .closing{ background:#101010; color:#f9f9f9; text-align:center; padding: 1.5rem 0; }
.about .closing blockquote{ margin:0; font-size:1.2rem; font-weight:600; line-height:1.4; }

/* Accessibility */
.about a:focus-visible{ outline:2px solid var(--brand); outline-offset:2px; border-radius:6px; }

/* =========================================================
   Page Add-ons — Contact (contact.html)
   Layer on top of common.css (orange theme)
   ========================================================= */

.contact .contact-band{
  background:
    radial-gradient(900px 300px at 20% -10%, #ffe9dc 0%, rgba(255,233,220,0) 60%),
    linear-gradient(180deg, #fff 0%, var(--brand-2) 100%);
  border-bottom:1px solid var(--border);
}
.contact .contact-band .container{
  padding: clamp(1.25rem, 2.2vw + 1rem, 2.5rem) 0;
}
.contact .contact-band h1{
  margin:.1rem 0 .4rem;
  font-size: clamp(1.9rem, 2.2vw + 1.4rem, 2.6rem);
  line-height:1.15;
}
.contact .contact-band .lead{ color:#333; margin:0 0 .75rem; }

.contact .contact-grid .container{
  padding: clamp(1.1rem, 2vw + 1rem, 2.2rem) 0;
}

/* Cards */
.contact .contact-card,
.contact .info-card{
  border:1px solid var(--border); border-radius:16px; box-shadow: var(--shadow);
}
.contact .contact-card .card-body,
.contact .info-card .card-body{ padding:1rem 1.1rem 1.2rem; }

/* Form */
.contact .contact-form{ display:grid; gap:.85rem; }
.contact .row{ display:grid; gap:.85rem; }
@media (min-width: 760px){ .contact .row{ grid-template-columns: 1fr 1fr; } }

.contact label{ font-weight:700; display:block; margin-bottom:.25rem; }
.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"],
.contact select,
.contact textarea{
  width:100%; padding:.7rem .75rem; border:1px solid var(--border);
  border-radius:10px; background:#fff; color:var(--text);
}
.contact textarea{ resize: vertical; }

.contact .hint{ color: var(--muted); display:block; margin-top:.25rem; }
.contact .fact.note{
  background:#fff7f0; border:1px solid var(--border);
  padding:.8rem .9rem; border-radius:12px; color:#2a2a2a;
}

.contact .actions{ display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.25rem; }

.contact .privacy.small{
  color:#555; font-size:.9rem; margin:.35rem 0 0;
}

/* Info card bits */
.contact .info-card h2{ margin:.25rem 0 .6rem; }
.contact .info-block + .info-block{ margin-top:.9rem; }
.contact .contact-lines{ display:flex; flex-wrap:wrap; gap:.5rem; }

.contact .hours{ margin-top:.35rem; }
.contact .hours .row{
  display:flex; justify-content:space-between; gap:.5rem;
  padding:.35rem .5rem; border-bottom:1px dashed #ecdccd;
}
.contact .hours .row:last-child{ border-bottom:0; }

/* Helpers */
.muted { color: var(--muted); }
.visually-hidden {
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* Focus states */
.contact a:focus-visible,
.contact button:focus-visible,
.contact input:focus-visible,
.contact select:focus-visible,
.contact textarea:focus-visible{
  outline:2px solid var(--brand); outline-offset:2px; border-radius:8px;
}

/* Anchor offsets */
.contact [id]{ scroll-margin-top: 80px; }


